home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / comm / uucp / AM114src.lha / config.h < prev    next >
C/C++ Source or Header  |  1992-05-02  |  2KB  |  51 lines

  1. /*
  2. Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)
  3.  
  4. Permission to use, copy, modify, and distribute this material 
  5. for any purpose and without fee is hereby granted, provided 
  6. that the above copyright notice and this permission notice 
  7. appear in all copies, and that the name of Bellcore not be 
  8. used in advertising or publicity pertaining to this 
  9. material without the specific, prior written permission 
  10. of an authorized representative of Bellcore.  BELLCORE 
  11. MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY 
  12. OF THIS MATERIAL FOR ANY PURPOSE.  IT IS PROVIDED "AS IS", 
  13. WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
  14. */
  15.  
  16. /* This is the top-level configuration file for the metamail distribution. */
  17.  
  18. /* NOTE:  The RESET_PROGRAM resets the terminal to a "normal" state 
  19.    If you comment out the definition, all will be well except that metamail's
  20.    -R switch won't work, and metamail-called programs might be more likely
  21.    to screw up your terminal state */
  22.  
  23. #define RESET_PROGRAM "/usr/ucb/reset"
  24.  
  25. #ifdef SYSV
  26. #undef RESET_PROGRAM
  27. #define index strchr
  28. #define rindex strrchr
  29. #define NO_RLIMITS 1
  30. #endif
  31.  
  32. #ifdef __hpux
  33. #define NO_RLIMITS 1
  34. #endif
  35.  
  36. #ifdef __MSDOS__
  37. #undef RESET_PROGRAM
  38. #include <string.h>
  39. #define index  strchr
  40. #define rindex strrchr
  41. #define popen  fopen
  42. #define pclose fclose
  43. #define NO_RLIMITS 1
  44. #endif
  45.  
  46. /* The following defines the default size at which long
  47.     messages will be split into multiple messages of type
  48.     "message/partial" by the mailto and splitmail commands,
  49.     at least. */
  50. #define DEFAULT_SPLIT_SIZE 250000
  51.